@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1600121848594-d8644e57abab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    transition: transform 0.5s ease;
}

.testimonial-card {
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(220, 38, 38, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

#navbar {
    transition: all 0.3s ease;
}

.btn-hover-effect {
    position: relative;
    overflow: hidden;
}

.btn-hover-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-hover-effect:hover::after {
    left: 100%;
}

@media (max-width: 768px) {
    .hero-bg {
        background-position: 65% center;
    }

    .stats-section div {
        padding: 1.5rem;
    }
}

.contact-top {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('../images/contact-banner.jpg');
    width: 100%;
    height: 100%;
    background-size: cover;
    position: relative;
    background-position: center center;
}

#contact {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/home-contact-backgrounf.jpg');
    height: 100vh;
}
@media(max-width:1200px){
    #contact{

        height: auto;
    }
}


/* Progress circle animation */
.progress-circle {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 2s ease-in-out;
}

/* Counter animation */
.counter-value {
    transition: color 0.3s ease;
}

/* Hover effects */
.group:hover .counter-value {
    color: #ef4444;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.2);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .counter {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}


/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Smooth transitions for dropdown */
.transform-gpu {
    transform-style: preserve-3d;
}

/* Hover effect for nav links */
.nav-link:hover {
    transform: translateY(-2px);
}

/* Pulse animation for CTA button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.btn-hover-effect:hover {
    animation: pulse 1.5s infinite;
}

/* # about  */

.about-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/about-banner.jpg') center/cover;
    width: 100%;
    height: auto;
    position: relative;
}

     .counter-card {
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .counter-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .counter-card:hover::before {
            opacity: 1;
        }
        .counter-card::after {
            content: '';
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(255,255,255,0.2) 0%, transparent 100%);
            z-index: -1;
            transition: bottom 0.6s cubic-bezier(0.33, 1, 0.68, 1);
        }
        .counter-card:hover::after {
            bottom: 0;
        }
        .icon-wrapper {
            transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        }
        .counter-card:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
        }
        .counter-value {
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
            position: relative;
        }
        .counter-value::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: currentColor;
            transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        }
        .counter-card:hover .counter-value::after {
            width: 100%;
        }
        
        
                .residental-banner{
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/residental-moving-banner.jpg') center/cover;
            width: 100%;
            height: auto;
        }
                .transportation-banner{
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/transportation-image-banner.jpg') center/cover;
            width: 100%;
            height: auto;
        }
                .car-transportation-banner{
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/car-transportation-banner.jpg') center/cover;
            width: 100%;
            height: auto;
        }
               .loading-banner{
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/loading-banner.jpg') center/cover;
            width: 100%;
            height: auto;
        }
         .contact-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 9999;
        font-family: 'Arial', sans-serif;
    }
    
    .contact-float-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 28px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        transition: all 0.3s ease;
        margin-bottom: 15px;
        position: relative;
    }
    
    .contact-float-btn:hover {
        transform: scale(1.1) translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    
    .contact-float-btn.whatsapp {
        background: #25D366;
        background: linear-gradient(135deg, #25D366, #128C7E);
    }
    
    .contact-float-btn.call {
        background: #007AFF;
        background: linear-gradient(135deg, #007AFF, #0045FF);
    }
    
    .contact-float-btn .pulse {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: inherit;
        opacity: 0.8;
        animation: pulse 2s infinite;
        z-index: -1;
    }
    
    /*@keyframes pulse {*/
    /*    0% { transform: scale(1); opacity: 0.8; }*/
    /*    70% { transform: scale(1.3); opacity: 0; }*/
    /*    100% { transform: scale(1); opacity: 0; }*/
    /*}*/
    
    .contact-tooltip {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        padding: 8px 15px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .contact-float-btn:hover .contact-tooltip {
        opacity: 1;
        right: 75px;
    }